home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / uint32.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  16KB  |  730 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: uint32.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The UINT32 class is used to represent 32 bit unsigned integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating a 32-bit value into four separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An UINT32 type has a base 10 limit of 4,294,967,295.
  36. */
  37. // ----------------------------------------------------------- // 
  38. #include <string.h>
  39. #include <memory.h>
  40. #include "uint32.h"
  41. #include "ehandler.h"
  42.  
  43. UINT32::UINT32(__ULWORD__ val)
  44. {
  45.   UnPackBits(val);
  46. }
  47.  
  48. UINT32::UINT32(const UINT32& ob)
  49. {
  50.   memmove((void *)byte, (const void *)ob.byte, 4);
  51. }
  52.  
  53. UINT32& UINT32::operator=(const UINT32& ob)
  54. {
  55.   memmove((void *)byte, (const void *)ob.byte, 4);
  56.   return *this;
  57. }
  58.  
  59. UINT32& UINT32::operator=(const __ULWORD__ val)
  60. {
  61.   UnPackBits(val);
  62.   return *this;
  63. }
  64.  
  65. UINT32::operator __ULWORD__() const
  66. {
  67.   return PackBits();
  68. }
  69.  
  70. __ULWORD__ UINT32::PackBits() const
  71. {
  72.   __ULWORD__ a, b, c, d;
  73.   
  74.   a = (__ULWORD__)byte[0];
  75.   b = (__ULWORD__)byte[1];
  76.   c = (__ULWORD__)byte[2];
  77.   d = (__ULWORD__)byte[3];
  78.  
  79.   a = a & 0xFF;
  80.   b = (b<<8) & 0xFF00;
  81.   c = (c<<16) & 0xFF0000;
  82.   d = (d<<24) & 0xFF000000;
  83.  
  84.   return a + b + c + d;
  85. }
  86.  
  87. void UINT32::UnPackBits(__ULWORD__ val)
  88. {
  89.   byte[0] = val & 0xFF;
  90.   byte[1] = (val & 0xFF00)>>8;
  91.   byte[2] = (val & 0xFF0000)>>16;
  92.   byte[3] = (val & 0xFF000000)>>24;
  93. }
  94.  
  95. UINT32 UINT32::operator++(int) // Postfix
  96. {
  97.   UINT32 val_before(*this); 
  98.   operator=(*this + 1);
  99.   return val_before;
  100. }
  101.  
  102. UINT32 UINT32::operator--(int) // Postfix
  103. {
  104.   UINT32 val_before(*this); 
  105.   operator=(*this - 1);
  106.   return val_before;
  107. }
  108.  
  109. void UINT32::operator/=(const UINT32 &i)
  110. {
  111.   if(i == 0)
  112. #ifdef CPP_EXCEPTIONS
  113.     throw CDivideByZero();
  114. #else
  115.     Error->SignalException(EHandler::DivideByZero);
  116. #endif
  117.  
  118.   operator=(*this / i);
  119. }
  120.  
  121. void UINT32::operator/=(const __LWORD__ &i)
  122. {
  123.   if(i == 0)
  124. #ifdef CPP_EXCEPTIONS
  125.     throw CDivideByZero();
  126. #else
  127.     Error->SignalException(EHandler::DivideByZero);
  128. #endif
  129.  
  130.     operator=(*this / i);
  131. }
  132.  
  133. void UINT32::operator/=(const __ULWORD__ &i)
  134. {
  135.   if(i == 0)
  136. #ifdef CPP_EXCEPTIONS
  137.     throw CDivideByZero();
  138. #else
  139.     Error->SignalException(EHandler::DivideByZero);
  140. #endif
  141.  
  142.   operator=(*this / i);
  143. }
  144.  
  145. void UINT32::operator/=(const __WORD__ &i)
  146. {
  147.   if(i == 0)
  148. #ifdef CPP_EXCEPTIONS
  149.     throw CDivideByZero();
  150. #else
  151.     Error->SignalException(EHandler::DivideByZero);
  152. #endif
  153.  
  154.   operator=(*this / i);
  155. }
  156.  
  157. void UINT32::operator/=(const __SWORD__ &i)
  158. {
  159.   if(i == 0)
  160. #ifdef CPP_EXCEPTIONS
  161.     throw CDivideByZero();
  162. #else
  163.     Error->SignalException(EHandler::DivideByZero);
  164. #endif
  165.  
  166.   operator=(*this / i);
  167. }
  168.  
  169. void UINT32::operator/=(const __UWORD__ &i)
  170. {
  171.   if(i == 0)
  172. #ifdef CPP_EXCEPTIONS
  173.     throw CDivideByZero();
  174. #else
  175.     Error->SignalException(EHandler::DivideByZero);
  176. #endif
  177.  
  178.   operator=(*this / i);
  179. }
  180.  
  181. void UINT32::operator/=(const __USWORD__ &i)
  182. {
  183.   if(i == 0)
  184. #ifdef CPP_EXCEPTIONS
  185.     throw CDivideByZero();
  186. #else
  187.     Error->SignalException(EHandler::DivideByZero);
  188. #endif
  189.  
  190.   operator=(*this / i);
  191. }
  192.  
  193. void UINT32::operator/=(const __SBYTE__ &i)
  194. {
  195.   if(i == 0)
  196. #ifdef CPP_EXCEPTIONS
  197.     throw CDivideByZero();
  198. #else
  199.     Error->SignalException(EHandler::DivideByZero);
  200. #endif
  201.  
  202.   operator=(*this / (__ULWORD__)i);
  203. }
  204.  
  205. void UINT32::operator/=(const __UBYTE__ &i)
  206. {
  207.   if(i == 0)
  208. #ifdef CPP_EXCEPTIONS
  209.     throw CDivideByZero();
  210. #else
  211.     Error->SignalException(EHandler::DivideByZero);
  212. #endif
  213.  
  214.   operator=(*this / (__ULWORD__)i);
  215. }
  216.  
  217. int operator==(const UINT32 &a, const UINT32 &b)
  218. {
  219.   return a.PackBits() == b.PackBits();
  220. }
  221.  
  222. int operator==(const UINT32 &a, const __LWORD__ &bl)
  223. {
  224.   return a.PackBits() == bl;
  225. }
  226.  
  227. int operator==(const __LWORD__ &al, const UINT32 &b)
  228. {
  229.   return al == b.PackBits(); 
  230. }
  231.  
  232. int operator==(const UINT32 &a, const __ULWORD__ &bl)
  233. {
  234.   return a.PackBits() == bl;
  235. }
  236.  
  237. int operator==(const __ULWORD__ &al, const UINT32 &b)
  238. {
  239.   return al == b.PackBits(); 
  240. }
  241.  
  242. int operator==(const UINT32 &a, const __WORD__ &bl)
  243. {
  244.   return a.PackBits() == bl;
  245. }
  246.  
  247. int operator==(const __WORD__ &al, const UINT32 &b)
  248. {
  249.   return al == b.PackBits();
  250. }
  251.  
  252. int operator==(const UINT32 &a, const __SWORD__ &bl)
  253. {
  254.   return a.PackBits() == bl;
  255. }
  256.  
  257. int operator==(const __SWORD__ &al, const UINT32 &b)
  258. {
  259.   return al == b.PackBits(); 
  260. }
  261.  
  262. int operator==(const UINT32 &a, const __UWORD__ &bl)
  263. {
  264.   return a.PackBits() == bl;
  265. }
  266.  
  267. int operator==(const __UWORD__ &al, const UINT32 &b)
  268. {
  269.   return al == b.PackBits(); 
  270. }
  271.  
  272. int operator==(const UINT32 &a, const __USWORD__ &bl)
  273. {
  274.   return  a.PackBits() == bl;
  275. }
  276.  
  277. int operator==(const __USWORD__ &al, const UINT32 &b)
  278. {
  279.   return al == b.PackBits(); 
  280. }
  281.  
  282. int operator==(const UINT32 &a, const __SBYTE__ &bl)
  283. {
  284.   return a.PackBits() == (__ULWORD__)bl;
  285. }
  286.  
  287. int operator==(const __SBYTE__ &al, const UINT32 &b)
  288. {
  289.   return (__ULWORD__)al == b.PackBits(); 
  290. }
  291.  
  292. int operator==(const UINT32 &a, const __UBYTE__ &bl)
  293. {
  294.   return a.PackBits() == (__ULWORD__)bl;
  295. }
  296.  
  297. int operator==(const __UBYTE__ &al, const UINT32 &b)
  298. {
  299.   return (__ULWORD__)al == b.PackBits(); 
  300. }
  301.  
  302. int operator!=(const UINT32 &a, const UINT32 &b)
  303. {
  304.   return a.PackBits() != b.PackBits();
  305. }
  306.  
  307. int operator!=(const UINT32 &a, const __LWORD__ &bl)
  308. {
  309.   return a.PackBits() != bl;
  310. }
  311.  
  312. int operator!=(const __LWORD__ &al, const UINT32 &b)
  313. {
  314.   return al != b.PackBits();
  315. }
  316.  
  317. int operator!=(const UINT32 &a, const __ULWORD__ &bl)
  318. {
  319.   return a.PackBits() != bl;
  320. }
  321.  
  322. int operator!=(const __ULWORD__ &al, const UINT32 &b)
  323. {
  324.   return al != b.PackBits();
  325. }
  326.  
  327. int operator!=(const UINT32 &a, const __WORD__ &bl)
  328. {
  329.   return a.PackBits() != bl;
  330. }
  331.  
  332. int operator!=(const __WORD__ &al, const UINT32 &b)
  333. {
  334.   return al != b.PackBits();
  335. }
  336.  
  337. int operator!=(const UINT32 &a, const __SWORD__ &bl)
  338. {
  339.   return a.PackBits() != bl;
  340. }
  341.  
  342. int operator!=(const __SWORD__ &al, const UINT32 &b)
  343. {
  344.   return al != b.PackBits();
  345. }
  346.  
  347. int operator!=(const UINT32 &a, const __UWORD__ &bl)
  348. {
  349.   return a.PackBits() != bl;
  350. }
  351.  
  352. int operator!=(const __UWORD__ &al, const UINT32 &b)
  353. {
  354.   return al != b.PackBits();
  355. }
  356.  
  357. int operator!=(const UINT32 &a, const __USWORD__ &bl)
  358. {
  359.   return a.PackBits() != bl;
  360. }
  361.  
  362. int operator!=(const __USWORD__ &al, const UINT32 &b)
  363. {
  364.   return al != b.PackBits();
  365. }
  366.  
  367. int operator!=(const UINT32 &a, const __SBYTE__ &bl)
  368. {
  369.   return a.PackBits() != (__ULWORD__)bl;
  370. }
  371.  
  372. int operator!=(const __SBYTE__ &al, const UINT32 &b)
  373. {
  374.   return (__ULWORD__)al != b.PackBits();
  375. }
  376.  
  377. int operator!=(const UINT32 &a, const __UBYTE__ &bl)